home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00089_dotturnley behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  1.1 KB  |  37 lines

  1. global oldText
  2.  
  3. on mouseEnter me
  4.   puppetSound(3, "over")
  5.   sprite(71).visible = 1
  6.   member("blurb").text = "The Turnley brothersΓÇÖ documentary photographs for Time, Newsweek, National Geographic and many other publications have riveted readers and defined seminal world events for two decades. They have crisscrossed the globe capturing images that veteran photojournalist Howard Chapnick has called ΓÇ£oases of kindness and reverence of lifeΓǪthat often transcend the horror [of the events they cover].ΓÇ¥"
  7.   sprite(9).visible = 0
  8.   sprite(21).visible = 0
  9.   sprite(22).visible = 0
  10.   sprite(23).visible = 0
  11.   sprite(24).visible = 1
  12.   sprite(25).visible = 0
  13.   sprite(26).visible = 0
  14.   sprite(27).visible = 0
  15.   sprite(28).visible = 0
  16.   sprite(29).visible = 0
  17.   sprite(30).visible = 0
  18.   sprite(31).visible = 1
  19.   sprite(32).visible = 0
  20.   sprite(33).visible = 0
  21.   sprite(34).visible = 0
  22.   sprite(35).visible = 0
  23. end
  24.  
  25. on mouseLeave me
  26.   member("blurb").text = oldText
  27.   sprite(24).visible = 0
  28.   sprite(31).visible = 0
  29. end
  30.  
  31. on mouseUp me
  32.   puppetSound(2, "click")
  33.   oldText = member("blurb").text
  34.   sprite(31).visible = 0
  35.   go("turnley")
  36. end
  37.